home *** CD-ROM | disk | FTP | other *** search
- head 1.1;
- access;
- symbols;
- locks; strict;
- comment @// @;
-
-
- 1.1
- date 2005.01.09.19.22.43; author oleg; state Exp;
- branches;
- next ;
-
-
- desc
- @@
-
-
- 1.1
- log
- @*** empty log message ***
- @
- text
- @//
- // LaunchTextView.m
- // RocketLauncher
- //
- // Created by Oleg Kibirev on 1/9/05.
- // Copyright 2005 My Stuff. All rights reserved.
- //
-
- #import "LaunchTextView.h"
-
-
- @@implementation LaunchTextView
- -(void)setTableView: (NSTableView *)tbl {
- table = tbl;
- }
-
- - (void)keyDown:(NSEvent *)theEvent {
- NSString *s = [theEvent characters];
- if ([s length] == 1) {
- unichar c = [s characterAtIndex:0];
- switch (c) {
- case NSUpArrowFunctionKey: case NSDownArrowFunctionKey:
- [table keyDown:theEvent];
- return;
- }
- }
- [super keyDown:theEvent];
- }
- @@end
- @
-